home *** CD-ROM | disk | FTP | other *** search
- /*
- * FILE: simpict.h
- * AUTHOR: R. Gonzalez
- * CREATED: October 6, 1990
- *
- * Defines simple pict application class.
- */
-
- # ifndef simpict_h
- # define simpict_h
-
- # include "pict.h"
- # include "coord.h"
-
- /******************************************************************
- * simple pict application
- ******************************************************************/
- struct Simple_Pict:Generic_Pict
- {
- Projector *projector1,
- *projector2;
- Coord2 *c1,
- *c2;
-
- boolean init(void);
- virtual void run(void);
- boolean destroy(void);
- };
-
- # endif